home *** CD-ROM | disk | FTP | other *** search
/ Champak 83 / (Vol 83) My Disc.iso / Games / blobz.swf / scripts / frame_396 / DoAction.as
Text File  |  2008-08-08  |  244b  |  14 lines

  1. continuebtn.onRelease = function()
  2. {
  3.    gotoAndPlay(196);
  4. };
  5. continuebtn.onKeyDown = function()
  6. {
  7.    if(Key.getCode() == 32)
  8.    {
  9.       Key.removeListener(continuebtn);
  10.       this.onRelease();
  11.    }
  12. };
  13. Key.addListener(continuebtn);
  14.